home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / hdf / mac / h10srcst.hqx / Source / HyperHell Source / App NCSA TektoPICT / rg0.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-11-01  |  681 b   |  41 lines

  1. /*
  2.  
  3. rgnull.c by Aaron Contorer for NCSA
  4. Copyright 1987, board of trustees, University of Illinois
  5.  
  6. routines for "null" device -- calling these routines
  7.     has no effect, but they are compatible with all RG calls.
  8.  
  9. */
  10.  
  11.  
  12. static char *nullname = "Null device -- do not display output";
  13.  
  14. int RG0newwin()
  15. {
  16.     return(0);
  17. }
  18.  
  19. RG0clrscr(w){}
  20. RG0close(w) {}
  21. RG0point(w,x,y) {} 
  22. RG0drawline(w,a,b,c,d) {}
  23. RG0pagedone(w) {}
  24. RG0dataline(w,data,count) {}
  25. RG0pencolor(w,color){}
  26. RG0charmode(w,rotation,size) {}
  27. RG0showcur() {}
  28. RG0lockcur() {}
  29. RG0hidecur() {}
  30. RG0bell(w) {}
  31.  
  32. char *RG0devname() {
  33.     return(nullname);
  34. }
  35.  
  36. RG0uncover(w) {}
  37. RG0init() {}
  38. RG0info(w,a,b,c,d,v) {}
  39. RG0gmode() {}
  40. RG0tmode() {}
  41.